home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- cursor(4)
- put "Quitting applications..." & RETURN into field "ProgressInfo"
- set appList to OSGetProcessList()
- set currentApp to OSGetProcess()
- set numApps to count(appList)
- repeat with i = 1 to numApps
- set app to getAt(appList, i)
- if (app <> currentApp) and (app <> "Finder") then
- OSKillProcess(app)
- end if
- end repeat
- startTimer()
- end
-